home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / fviewsrc.zip / MMAKE < prev    next >
Text File  |  1993-01-04  |  1KB  |  38 lines

  1. #
  2. # For use with MicroSoft C v 5.1
  3. #
  4.  
  5. fview.obj: fview.c archdr.h fview.h
  6.         cl /AC /c /Ox fview.c
  7.  
  8. foscom.obj: foscom.c archdr.h
  9.         cl /AC /c /Ox foscom.c
  10.  
  11. arc_view.obj: arc_view.c archdr.h arc_view.h
  12.         cl /AC /c /Ox arc_view.c
  13.  
  14. unzip.obj: unzip.c archdr.h unzip.h
  15.         cl /AC /c /Ox unzip.c
  16.  
  17. #
  18. #  If you aren't going to use the PAK Toolkit, you don't need this:
  19. #
  20. unpak.obj: unpak.c compress.h
  21.         cl /c /AC /Ox unpak.c
  22.  
  23. #
  24. #
  25. #  If you DON'T have the PAK Toolkit from NoGate Consulting, and are
  26. #  going to SHELL to run pak.exe, remove the '#' signs and use this:
  27. #
  28. #fview.exe: fview.obj foscom.obj arc_view.obj unzip.obj
  29. #        link /NOE  fview+foscom+arc_view+unzip;
  30. #
  31. #
  32. #  If you DO have the PAK Toolkit from NoGate Consulting, get out the 
  33. #  EXPAND.OBJ, UTILITY.OBJ, and COMPRESS.H files and use this:
  34. #
  35. fview.exe: fview.obj foscom.obj arc_view.obj unzip.obj unpak.obj expand.obj utility.obj
  36.         link /NOE fview+foscom+arc_view+unzip+unpak+expand+utility;
  37.  
  38.